home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 …ember: Reference Library / Dev.CD Dec 97 RL.toast / What's New / Tool Chest / Testing & Debugging / Virtual User / Examples / Example External Tools / MathTool / MathTool.Make < prev    next >
Encoding:
Text File  |  1997-10-15  |  1.5 KB  |  49 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        MathTool.make
  3. #
  4. #    Contains:    Make file for the Virtual User example external tool MathTool
  5. #
  6. #    Written by:    Jeff Cathers, Chad Williams, and David Gaxiola
  7. #
  8. #    Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    Change History (most recent first):
  11. #
  12. #         <2>     3/22/94    CMW        Add AEUserTermTypes.r.
  13. #                  8/6/92    DGG        Changed makefile into MathTool.make
  14. #                  8/3/92    DGG        Added support for services and changed signature    
  15. #         <1>     2/20/92    JCC        Ready for SCM build
  16. #         <6>     2/19/92    JCC        Finishing touches
  17. #         <5>     2/18/92    CMW        Change the use of the "extraloptions" variable to instead use
  18. #                                    "extralinkoptions" to match the variables used in all our other
  19. #                                    makefiles.
  20. #         <4>     2/13/92    JCC        Take out the Pascal stuff.
  21. #         <3>     2/13/92    JCC        Added {extraloptions}, {extrapoptions} and {extracoptions}
  22. #         <2>     2/12/92    JCC        Commented out CSANELib,o, Math.o, Complex.o, SANELib.o and
  23. #                                    PasLib.o
  24. #
  25. #    To Do:
  26. #
  27. #   Sources:    MathTool.c MathTool.r AEUserTermTypes.r
  28. #   Target:     MathTool
  29. #   Created:    Wednesday, February 5, 1992 4:48:38 PM
  30. #
  31.  
  32. OBJECTS = MathTool.c.o
  33.  
  34. MathTool ƒƒ MathTool.make MathTool.r AEUserTermTypes.r
  35.     Rez MathTool.r AEUserTermTypes.r -append -o MathTool
  36.  
  37. MathTool ƒƒ MathTool.make {OBJECTS}
  38.     Link -t APPL -c VUmt {extralinkoptions} ∂
  39.         {OBJECTS} ∂
  40.         "{CLibraries}"CSANELib.o ∂
  41.         "{CLibraries}"StdClib.o ∂
  42.         "{Libraries}"Runtime.o ∂
  43.         "{Libraries}"Interface.o ∂
  44.         "{CLibraries}"Math.o ∂
  45.         -o MathTool
  46.  
  47. mathTool.c.o ƒ MathTool.c
  48.      C -r MathTool.c {extracoptions}
  49.